home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BorderStyle = 3 'Fixed Dialog
- Caption = "IniCon Sample"
- ClientHeight = 1815
- ClientLeft = 1275
- ClientTop = 2160
- ClientWidth = 5055
- ControlBox = 0 'False
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2220
- Left = 1215
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1815
- ScaleWidth = 5055
- Top = 1815
- Width = 5175
- Begin VB.CommandButton Command3
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "DeleteParm"
- Height = 375
- Left = 3360
- TabIndex = 10
- Top = 1200
- Width = 1455
- End
- Begin VB.CommandButton Command2
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "DeleteApp"
- Height = 375
- Left = 3360
- TabIndex = 9
- Top = 720
- Width = 1455
- End
- Begin VB.CommandButton Command1
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Exit"
- Height = 375
- Left = 3360
- TabIndex = 8
- Top = 240
- Width = 1455
- End
- Begin VB.TextBox Text4
- Appearance = 0 'Flat
- Height = 285
- Left = 1320
- TabIndex = 6
- Top = 1320
- Width = 1695
- End
- Begin VB.TextBox Text3
- Appearance = 0 'Flat
- Height = 285
- Left = 1320
- TabIndex = 4
- Top = 960
- Width = 1695
- End
- Begin VB.TextBox Text2
- Appearance = 0 'Flat
- Height = 285
- Left = 1320
- TabIndex = 2
- Top = 600
- Width = 1695
- End
- Begin VB.TextBox Text1
- Appearance = 0 'Flat
- Height = 285
- Left = 1320
- TabIndex = 0
- Top = 240
- Width = 1695
- End
- Begin IniconLib.Init Init1
- Left = 0
- Top = 1320
- _version = 196611
- _extentx = 847
- _extenty = 847
- _stockprops = 0
- application = ""
- parameter = ""
- value = ""
- filename = ""
- End
- Begin VB.Label Label4
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Value:"
- ForeColor = &H80000008&
- Height = 255
- Left = 240
- TabIndex = 7
- Top = 1365
- Width = 975
- End
- Begin VB.Label Label3
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Parameter:"
- ForeColor = &H80000008&
- Height = 255
- Left = 240
- TabIndex = 5
- Top = 1005
- Width = 975
- End
- Begin VB.Label Label2
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Application:"
- ForeColor = &H80000008&
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 645
- Width = 1095
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Filename:"
- ForeColor = &H80000008&
- Height = 255
- Left = 240
- TabIndex = 1
- Top = 285
- Width = 975
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- End
- End Sub
- Private Sub Command2_Click()
- Text3.Text = ""
- Text4.Text = ""
- Init1.DeleteApp = True
- End Sub
- Private Sub Command3_Click()
- Text4.Text = ""
- Init1.DeleteParm = True
- End Sub
- Private Sub Text1_Change()
- Init1.filename = Text1.Text
- Text4.Text = Init1.Value
- End Sub
- Private Sub Text2_Change()
- Init1.Application = Text2.Text
- Text4.Text = Init1.Value
- End Sub
- Private Sub Text3_Change()
- Init1.Parameter = Text3.Text
- Text4.Text = Init1.Value
- End Sub
- Private Sub Text4_Change()
- Init1.Value = Text4.Text
- End Sub
-